home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-02-13 | 1.3 KB | 63 lines | [TEXT/MPS ] |
- //# Copyright: © 1993 - 1995 by Apple Computer, Inc., all rights reserved.
-
- #ifndef _OJBECTNS_
- #define _OJBECTNS_
-
- #ifndef _NAMSPAC_
- #include "NamSpac.idl"
- #endif
-
- //==============================================================================
- // Classes defined in this interface
- //==============================================================================
-
- interface ODObjectNameSpace;
-
- //==============================================================================
- // Classes used by this interface
- //==============================================================================
-
- interface ODObjectIterator;
-
-
- //==============================================================================
- // ODObjectNameSpace
- //==============================================================================
-
- interface ODObjectNameSpace : ODNameSpace
- {
- void Register (in ODISOStr key,
- in ODObject object);
-
- ODBoolean GetEntry(in ODISOStr key,
- out ODObject object);
-
- ODObjectIterator CreateIterator();
-
-
-
-
- #ifdef __SOMIDL__
- implementation
- {
- majorversion = 1; minorversion = 0;
-
- functionprefix = ODObjectNameSpace;
-
- override:
- somUninit,
- Purge;
-
- releaseorder:
- Register,
- GetEntry,
- CreateIterator,
-
- reserved1;
-
- };
- #endif //# __SOMIDL__
- };
-
- #endif //# _OJBECTNS_
-